@font-face {
    font-family: 'Bailey';
    src: url('./assets/fonts/Bailey.woff2');
    
}

@font-face {
    font-family: 'Hoistek';
    src: url('./assets/fonts/Hoistek.otf');
    
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
}

body {
    background: url(./assets/images/background.png);
    background-position-y: -180px;
    font-family: "Afacad", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
}

.cta{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta__text{
    text-align: center;
}

.hero{
    background-color: #c5a572e6;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #FFE2CA;
    overflow: hidden;
}

.hero h1{
    font-family: "Bailey";
    font-size: 250px;
    font-weight: 300;
    text-align: center;
    padding: 1rem;
    text-wrap: nowrap;
    margin: 0;
    line-height: 1;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.hero h2{
    font-family: "Hoistek";
    font-size: 64px;
    font-weight: 300;
    text-align: center;
    padding: 1rem;
    text-wrap: nowrap;
    margin: 0;
    line-height: 1;
    margin-bottom: 100px;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.hero__info{
    z-index: 1;
}

.hero__ornaments{
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    object-fit: contain;
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    z-index: 1;
    max-width: 90%;
    transform-origin: top;
}

.cta{ 
    height: fit-content;
}

.cta__buttons{
    display: flex;
    gap: 10px;
    justify-content: center;
}

.call__button{
    background-color: #28241E;
    text-decoration: none;
    color: #FFE2CA;
    font-family: "Acme";
    font-size: 24px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 2rem;
    max-width: none;
    display: inline-block;
    width: 300px;
    text-align: center;
    max-width: 100%;
}

.call__button--light{
    background-color: #D9AB65;
    color: #150E0B;
}

.call__button--lighter{
    background-color: #FFE2CA;
    color: #150E0B;
}

.pricing{
    background-color: #FFE2CAf5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 100px;
    padding-bottom: 150px;
}


.pricing h2{
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-size: 64px;
}

.prices__container{
    display: flex;
    align-items: center;
    gap: 50px;
    text-align: center;
}

.price{
    background-color: #D9AB65;
    padding: 80px 50px;
    border-radius: 5px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.price h3{
    font-size: 48px;
    color: #2A231E;
}

.price__amount{
    margin: 35px;
    font-size: 32px;
}

.price__features{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
    border-top: 1px solid #2A231E;
    padding: 40px 0;
}

.price__features p{
    font-size: 16px;
    position: relative;
}

.checkmark{
    margin-right: 10px;
    position: relative;
    top: 4px;
}

strong{
    font-size: 24px;
    position: relative;
    top: -3px
}

.about{
    background-color: #FFE2CAf5;
    text-align: center;
    color: #150E0B;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.about h2{
    font-size: 64px;
    text-align: left;
    font-family: "DM Serif Text", serif;
    font-weight: 400;
    margin: 0;
    text-wrap: nowrap;
}

.about h2 span{
    font-size: 96px;
}

.about__content p{
    text-align: left;
    margin: 0;
}

.about__content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
}

.about .cta{
    width: fit-content;
}

.about__photo{
    position: relative;
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: 1;
}

.about__photo--mobile{
    display: none;
}

.frame{
    z-index: 2;
    position: relative;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    margin-left: -115px;
    margin-top: -81px;
    align-self: center;
}

.photo{
    z-index: 1;
    position: relative;
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    align-self: center;
    height: 570px;
    width: 435px;
    object-fit: cover;
}


.perks{
    min-height: 100vh;
    background-color: #FFE2CAf5;
    padding: 100px 0;
}

.perks__content{
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    width: 80%;
    margin: 0 auto;
    margin-bottom: 100px;
}

.perks__container{
    border-top: 1px solid #CC9642;
    width: 60%;
}

.perk{
    display: flex;
    gap: 40px;
    padding: 2rem 0;
    text-align: center;
    color: #150E0B;
    text-align: left;
    justify-content: space-between;
    border-bottom: 1px solid #CC9642;
    align-items: center;
}

.perk h3{
    width: 20%;
    font-family: "Hoistek";
    font-weight: 400;
    font-size: 40px;
}

.perk p{
    width: 70%;
    justify-self: flex-end;
}

.perks__image{
    align-self: center;
}

.reviews h2{
    font-size: 64px;
    font-family: "Hoistek", serif;
    font-weight: 400;
    margin: 0;
    width: 600px;
    text-align: center;
}

.reviews{
    margin: 150px;
    padding: 100px;
    background-color: #FFE2CAf5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.reviews__container{
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
}

.review{
    background-color: #28241E;
    padding: 40px;
    color: #FFE2CA;
    border-radius: 5px;
    z-index: 1;
    height: 430px;
    display: flex;
    align-items: center;
}

.reviews__ornament{
    position: absolute;
    z-index: 0;
}


.reviews__ornament--bird{
    right: 100px;
    top: 70px;
}

.reviews__ornament--plant1{
    left: -130px;
    top: 420px;
}

.reviews__ornament--plant2{
    right: -45px;
    top: 430px;
}

.final-cta{
    background-color: #FFE2CAf5;
    text-align: center;
    padding: 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 5%;
    padding: 200px 0;
}

.final-cta h2{
    font-family: "DM Serif Text", serif;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
    text-wrap: nowrap;
}

.final-cta p{
    font-size: 36px;
    font-weight: 400;
    margin: 50px 0;
}

.final-cta__content{
    display: flex;
    flex-direction: column;
    width: 40%;
    text-align: left;
    justify-content: flex-start;
    font-weight: 400;
}

.final-cta__content .cta{
    justify-self: flex-start;
    margin: 0;
    padding: 0;
    justify-content: flex-start;
    width: fit-content;
}

.final-cta__image{
    width: 40%;
}

.final-cta__image--mobile{
    display: none;
    width: 100%;
}

footer{
    background-color: #D9AB65;
    color: #2A231E;
    text-align: center;
    padding: 100px;
    font-size: 16px;
    overflow: hidden;
}

.footer__navigation{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo__container{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer__links{
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr 1fr 1fr;
    text-align: left;
    width: 30%;
    gap: 30px;
}

.footer__links h3{
    grid-row: 1;
    grid-column: 1 / span 2;
    text-align: left;
}



.logo__container h4{
    font-family: "Bailey";
    color: #FFE2CA;
    font-size: 60px;
    font-weight: 300;
    text-align: center;
    padding: 1rem;
    text-wrap: nowrap;
    margin: 0;
    line-height: 1;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

.logo__container a{
    font-weight: 600;
    margin: 5px 0;
}

.footer__info{
    border-top: 1px solid #2A231E;
    padding-top: 30px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.footer-info__links{
    display: flex;
    gap: 40px;
}

.footer__navigation a, .footer__info a{
    color: #2A231E;
    text-decoration: none;
    font-size: 24px;
    font-size: 16px;
}

@media(max-width: 1800px){
    .perk h3{
        font-size: 32px;
    }
    .perks__content{
        gap: 50px;
    }

    .perks__image{
        width: 40%;
    }
    .reviews__container{
        gap: 20px;
    }
    .reviews{
        margin: 50px;
        padding: 50px;
    }
    .reviews__ornament{
        display: none;
    }
}

@media(max-width: 1600px){
    .about__photo{
        scale: 0.8;
    }
    .about__content h2{
        font-size: 42px;
    }
    .about__content h2 span{
        font-size: 64px;
    }
    .perk p{
        font-size: 20px;
    }
    .perks__content{
        width: 90%;
    }
   
    .final-cta__content h2{
        font-size: 48px;
    }
    .final-cta__content p{
        font-size: 24px;
        margin: 20px 0;
    }
}

@media(max-width: 1500px){
    .hero h1{
        font-size: 180px;
    }
    .hero{
        display: flex;
        justify-content: flex-start;
        padding: 200px;
        min-height: 0;
        height: fit-content;
    }
    .prices__container{
        scale: 0.8;
        margin: -100px;
    }
    .about{
        gap: 50px;
    }
    .about .cta{
        width: 100%;
    }
    .about .cta .cta__buttons{
        width: 100%;
    }
    .about .call__button{
        width: 100%;
        padding: 20px 0;
        font-size: 20px;
    }
    .final-cta__content h2{
        text-wrap: wrap;
    }
    .final-cta .cta__buttons{
        flex-direction: column;
    }
    .final-cta .call__button{
        margin: 0;
    }
}

@media(max-width: 1400px){
    .reviews__container{
        flex-direction: column;
    }
    .review{
        height: fit-content;
    }
}

@media(max-width: 1200px){
    .hero h1{
        font-size: 150px;
    }
    .hero h2{
        font-size: 48px;
    }
    .hero{
        padding: 100px;
    }
    .hero__ornaments{
        max-width: 100%;
    }
    .pricing{
        padding: 0px;
        justify-content: flex-start;
        padding-top: 100px;
    }
    .prices__container{
        scale: 0.6;
        margin: -150px;
    }
    .about{
        flex-direction: column;
    }
    .about__content h2{
        text-align: center;
    }
    .about__photo{
        display: none;
        scale: 1;
        margin: 50px 0 0;
        max-width: 100%;
        width: 100%;
        height: fit-content;
    }
    .photo{
        height: unset;
        width: unset;
        max-width: 60%;
        max-height: 75%;
        overflow: hidden;
    }
    .frame{
        max-width: 100%;
        max-height: 100%;
    }
    .about__content{
        order: 2;
        width: 80%;
        position: relative;
    }
    .about__photo--mobile{
        display: grid;
        position: relative;
        aspect-ratio: 1/1;
    }
    .perks__content{
        width: 80%;
    }
    .perks__image{
        display: none;
    }
    .perks__container{
        width: 100%;
    }
}

@media(max-width: 1000px){
    .hero .cta__buttons{
        flex-direction: column;
    }
    .hero .call__button{
        margin: 0;
    }
    .hero{
        padding: 50px 0;
    }
    .hero__info{
        max-width: 90%;
    }
    .call__button{
        width: 100%;
        text-wrap: nowrap;
    }
    .final-cta{
        padding: 100px 0;
    }
    .final-cta__image{
        display: none;
    }
    .final-cta__image--mobile{
        display: initial;
        width: 80%;
    }
    .final-cta__content{
        width: 80%;
        text-align: center;
        align-items: center;
    }
    .final-cta .cta__buttons{
        flex-direction: row;
        justify-content: center;
    }
    .footer__info{
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    footer{
        padding: 50px;
    }
}

@media(max-width: 900px){
    .frame{
        margin-left: -90px;
        margin-bottom: -40px;
    }
    .perks .cta{
        width: 80%;
        margin: 0 auto;
    }
}

@media(max-width: 800px){
    .hero__ornaments{
        top: 100px;
        bottom: 0px;
    }
    .prices__container{
        scale: 1;
        flex-direction: column;
        margin: 0;
        width: 90%;
    }
    .price{
        width: 100%;
    }
    .pricing{
        padding-bottom: 100px;
    }
    .perk{
        flex-direction: column;
        gap: 0;
    }
    .perk h3{
        width: 100%;
        text-align: center;
        margin: 0;
    }
    .perk p{
        width: 100%;
        text-align: center;
        margin: 0;
    }
    .reviews h2{
        font-size: 42px;
        width: fit-content;
    }
    .final-cta .cta__buttons{
        flex-direction: column;
        width: 100%;
    }
    .final-cta .cta{
        width: 100%;
    }
    .footer__navigation{

    }
    .footer__links{
        width: 50%;
    }
}

@media(max-width: 700px){
    .hero h1{
        font-size: 100px;
    }
    .hero h2{
        font-size: 32px;
    }
    .about__content{
        width: 90%;
    }
    .perks__content{
        width: 90%;
    }
    .perks .cta{
        width: 90%;
    }
    .footer-info__links{
        display: grid;
        grid-template-columns: repeat(2, auto);
        width: 100%;
    }
    .footer-info__links a{
        width: fit-content;

    }
    .reviews .cta__buttons{
        flex-direction: column;
        width: 100%;
    }
    .reviews .call__button{
        margin: 0;
    }
}

@media(max-width: 600px){
    .hero__ornaments{
        top: 10px;
        bottom: 80px;
    }
    .frame{
        display: none;
    }
    .photo{
        height: 100%;
        max-width: 100%;
        max-height: none;
    }
    .about__photo{
        aspect-ratio: unset;
        margin-top: 0;
    }
    .about__content h2{
        font-size: 32px;
    }
    .about__content h2 span{
        font-size: 48px;
    }
    .cta__buttons{
        flex-direction: column;
    }
    .call__button{
        margin: 0;
        width: 100%;
    }
    .footer__navigation{
        flex-direction: column;
        justify-content: flex-start;
    }
    .logo__container{
        width: 100%;
    }
    .footer__links{
        width: 100%;
    }
    .reviews{
        padding: 20px;
        margin: 30px;
    }
    .review{
        padding: 20px;
        font-size: 16px;
    }
    .reviews .cta__text{
        font-size: 20px;
        margin-bottom: 10px;
    }
}

@media(max-width: 500px){
    .hero__ornaments{
        top: 10px;
        bottom: 140px;
    }
    .hero h1{
        font-size: 80px;
    }
    .hero h2{
        font-size: 24px;
    }
    .price{
        padding: 20px;
    }
    .about__content h2{
        font-size: 24px;
    }
    .about__content h2 span{
        font-size: 36px;
    }
    .about__content p{
        font-size: 16px;
    }
    .perk h3{
        font-size: 24px;
    }
    .perk p{
        font-size: 16px;
    }
    .final-cta__content{
        width: 90%;
    }
    footer{
        padding: 20px;
    }
    .footer-info__links {
        padding: 0;
        gap: 20px 0;
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media(max-width: 400px){
    .hero__ornaments{
        top: 10px;
        bottom: 200px;
    }
    .call__button{
        font-size: 16px;
    }
    .hero h1{
        font-size: 60px;
    }
    .hero h2{
        font-size: 20px;
    }
    .final-cta__content h2{
        font-size: 30px;
    }
    .final-cta__content p{
        font-size: 16px;
    }
    .reviews{
        padding: 15px;
        margin: 10px;
    }
    .final-cta{
        padding: 50px 0;
        min-height: 0;
    }
}